次の方法で共有


GraphRequest interface

GraphRequest オブジェクトの型指定 詳細については、次を参照してください。 https://github.com/microsoftgraph/msgraph-sdk-javascript

プロパティ

_headers
_responseType
config
urlComponents

メソッド

buildFullUrl()
constructor(config, path)
count(count)
create(content, callback)
del(callback)
delete(callback)
expand(properties)
filter(filterStr)
get(callback)
getStream(callback)
header(headerKey, headerValue)
headers(headers)
orderby(properties)
parsePath(rawPath)
patch(content, callback)
post(content, callback)
put(content, callback)
putStream(stream, callback)
query(queryDictionaryOrString)
responseType(responseType)
select(properties)
skip(n)
skipToken(token)
top(n)
update(content, callback)
version(v)

プロパティの詳細

_headers

_headers: {
        [key: string]: string | number;
    };

プロパティ値

{ [key: string]: string | number; }

_responseType

_responseType: string;

プロパティ値

string

config

config: Options;

プロパティ値

@microsoft/microsoft-graph-client!Options:interface

urlComponents

urlComponents: URLComponents;

プロパティ値

@microsoft/microsoft-graph-client!URLComponents:interface

メソッドの詳細

buildFullUrl()

buildFullUrl(): string;

戻り値

string

constructor(config, path)

constructor(config: Options, path: string): IGraphRequest;

パラメーター

config
@microsoft/microsoft-graph-client!Options:interface
path

string

戻り値

count(count)

count(count: boolean): IGraphRequest;

パラメーター

count

boolean

戻り値

create(content, callback)

create(content: any, callback?: GraphRequestCallback): Promise<any>;

パラメーター

content

any

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

Promise<any>

del(callback)

del(callback?: GraphRequestCallback): Promise<any>;

パラメーター

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

Promise<any>

delete(callback)

delete(callback?: GraphRequestCallback): Promise<any>;

パラメーター

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

Promise<any>

expand(properties)

expand(properties: string | string[]): IGraphRequest;

パラメーター

properties

string | string[]

戻り値

filter(filterStr)

filter(filterStr: string): IGraphRequest;

パラメーター

filterStr

string

戻り値

get(callback)

get(callback?: GraphRequestCallback): Promise<any>;

パラメーター

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

Promise<any>

getStream(callback)

getStream(callback: GraphRequestCallback): void;

パラメーター

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

void

header(headerKey, headerValue)

header(headerKey: string, headerValue: string): this;

パラメーター

headerKey

string

headerValue

string

戻り値

this

headers(headers)

headers(headers: {
        [key: string]: string | number;
    }): this;

パラメーター

headers

{ [key: string]: string | number; }

戻り値

this

orderby(properties)

orderby(properties: string | string[]): IGraphRequest;

パラメーター

properties

string | string[]

戻り値

parsePath(rawPath)

parsePath(rawPath: string): void;

パラメーター

rawPath

string

戻り値

void

patch(content, callback)

patch(content: any, callback?: GraphRequestCallback): Promise<any>;

パラメーター

content

any

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

Promise<any>

post(content, callback)

post(content: any, callback?: GraphRequestCallback): Promise<any>;

パラメーター

content

any

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

Promise<any>

put(content, callback)

put(content: any, callback?: GraphRequestCallback): Promise<any>;

パラメーター

content

any

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

Promise<any>

putStream(stream, callback)

putStream(stream: any, callback: GraphRequestCallback): void;

パラメーター

stream

any

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

void

query(queryDictionaryOrString)

query(queryDictionaryOrString: string | {
        [key: string]: string | number;
    }): IGraphRequest;

パラメーター

queryDictionaryOrString

string | { [key: string]: string | number; }

戻り値

responseType(responseType)

responseType(responseType: string): IGraphRequest;

パラメーター

responseType

string

戻り値

select(properties)

select(properties: string | string[]): IGraphRequest;

パラメーター

properties

string | string[]

戻り値

skip(n)

skip(n: number): IGraphRequest;

パラメーター

n

number

戻り値

skipToken(token)

skipToken(token: string): IGraphRequest;

パラメーター

token

string

戻り値

top(n)

top(n: number): IGraphRequest;

パラメーター

n

number

戻り値

update(content, callback)

update(content: any, callback?: GraphRequestCallback): Promise<any>;

パラメーター

content

any

callback
@microsoft/microsoft-graph-client!GraphRequestCallback:type

戻り値

Promise<any>

version(v)

version(v: string): IGraphRequest;

パラメーター

v

string

戻り値