2 writes to objects
System.Messaging (2)
System\Messaging\Interop\MessagePropertyVariants.cs (2)
101objects = new object[MAX_PROPERTIES]; 109objects = new object[MAX_PROPERTIES];
37 references to objects
System.Messaging (37)
System\Messaging\Interop\MessagePropertyVariants.cs (37)
115return (byte[])objects[propertyId - basePropertyId]; 126objects[propertyId - basePropertyId] = value; 131return (short)objects[propertyId - basePropertyId]; 142objects[propertyId - basePropertyId] = value; 147return (int)objects[propertyId - basePropertyId]; 158objects[propertyId - basePropertyId] = value; 168return (uint)objects[propertyId - basePropertyId]; 173return (byte[])objects[propertyId - basePropertyId]; 184objects[propertyId - basePropertyId] = value; 189return (byte)objects[propertyId - basePropertyId]; 200objects[propertyId - basePropertyId] = value; 205return (byte[])objects[propertyId - basePropertyId]; 216objects[propertyId - basePropertyId] = value; 221return (short)objects[propertyId - basePropertyId]; 232objects[propertyId - basePropertyId] = value; 237return (int)objects[propertyId - basePropertyId]; 248objects[propertyId - basePropertyId] = value; 253return (long)objects[propertyId - basePropertyId]; 264objects[propertyId - basePropertyId] = value; 275object obj = objects[propertyId - basePropertyId]; 316newVectorProperties[usedProperties].caub.cElems = (uint)((byte[])objects[i]).Length; 320GCHandle handle = GCHandle.Alloc(objects[i], GCHandleType.Pinned); 325newVectorProperties[usedProperties].bVal = (byte)objects[i]; 327newVectorProperties[usedProperties].iVal = (short)objects[i]; 329newVectorProperties[usedProperties].lVal = (int)objects[i]; 331newVectorProperties[usedProperties].hVal = (long)objects[i]; 334GCHandle handle = GCHandle.Alloc(objects[i], GCHandleType.Pinned); 365objects[propertyId - basePropertyId] = null; 379objects[propertyId - basePropertyId] = null; 390objects[propertyId - basePropertyId] = null; 403objects[vectorIdentifiers[i] - basePropertyId] = vectorProperties[i].caub.cElems; 407objects[vectorIdentifiers[i] - basePropertyId] = vectorProperties[i * 4].caub.cElems; 411objects[vectorIdentifiers[i] - basePropertyId] = vectorProperties[i].ptr; 419objects[vectorIdentifiers[i] - basePropertyId] = (byte)vectorProperties[i].bVal; 421objects[vectorIdentifiers[i] - basePropertyId] = (short)vectorProperties[i].iVal; 423objects[vectorIdentifiers[i] - basePropertyId] = vectorProperties[i].lVal; 425objects[vectorIdentifiers[i] - basePropertyId] = vectorProperties[i].hVal;